home *** CD-ROM | disk | FTP | other *** search
/ AP Professional Graphics CD-ROM Library / AP Professional Graphics CD-ROM Library.iso / mac / Macintosh / Appendix / GemsII / Source Code Gems II / BitCounting / Makefile < prev    next >
Encoding:
Makefile  |  1995-03-08  |  172 b   |  11 lines  |  [TEXT/MSWD]

  1. CFLAGS = -g
  2.  
  3. tester : test.c bit32.o
  4.     $(CC) $(CFLAGS) test.c -o tester bit32.o
  5.  
  6. bit32.o : bit32.c
  7.     $(CC) -c $(CFLAGS) bit32.c -o bit32.o
  8.  
  9. clean:
  10.     /bin/rm -f bit32.o tester
  11.